
.communication-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.communication-heading {
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.communication-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
}

.communication-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: none;
    border-bottom: 2px solid #e9ecef;
    border-radius: 0;
    padding: 15px 0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.form-label {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-submit {
    background-color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.communication-info {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.communication-info h3 {
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.communication-info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.communication-info-item i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
}

.map-container {
    height: 300px;
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .communication-info {
        margin-top: 30px;
    }
}